home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 068 (1988-08-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 068 (1988-08-15)(Ossowski, Stefan)(DE)(PD).adf / DMouse / dmouse.doc < prev    next >
Text File  |  1988-06-18  |  4KB  |  100 lines

  1.  
  2. V1.06               DMOUSE.DOC           18 May 1988
  3.  
  4.               Matthew Dillon
  5.               891 Regal Rd
  6.               Berkeley, California 94708
  7.               USA
  8.  
  9.     YAIH (Yet Another Input Handler)... nahh, like DMouse better...
  10. for "Dillon's Mouse"???   Placed in PUBLIC DOMAIN because it's such a
  11. nifty program!
  12.  
  13.     After looking at and rejecting several mouse-intuition input
  14. handler enhancers (you know, accelerate the mouse, click-to-front, etc...)
  15. and finding them all useless, I have written my own.
  16.  
  17.     - Any option can be turned off or modified.
  18.  
  19.     - Screen blanks if keyboard or mouse is idle > N1 secs (def 300)
  20.  
  21.     - The Pesky Mouse blanks if mouse is idle > N2 secs (def 5)
  22.  
  23.     - Auto Activate a window when the mouse is moved over it.  Window
  24.       also activated (if not already active) when you type.
  25.  
  26.     - Mouse Accelerator.  Back feeds power into the mouse unit;
  27.       give it a nudge and it is guarenteed to penetrate up to an
  28.       inch and a half of wall plaster (programmable depth).  Once
  29.       you start using it, you won't be able to switch back!
  30.  
  31.     - Programmable command-key and command string ala PopCli, default
  32.       left-Amiga ESC.
  33.  
  34.     - Left Mouse Button click in window brings it to the front
  35.         DOES NOT BRING THE WINDOW TO THE FRONT IF IT IS ALREADY
  36.         IN THE FRONT.  Other programs would call WindowToFront() on
  37.         every click, which is horrible if you have a simple-refresh
  38.         window.
  39.  
  40.       # clicks required is settable.
  41.  
  42.     - Hold LMB, click Right Mouse Button .. Window to Back!  Great
  43.       for cycling windows.    See next feature for more info.
  44.  
  45.     - Same sequence as above, but if there is no window under the
  46.       current mouse position, there is only one window on the screen,
  47.       or the window under the mouse is a BACKDROP window, the
  48.       sequence cycles through Screens!
  49.  
  50.     - NO DAMN CLOCK.  Use another utility to get a clock.  No other
  51.       glossy thrills.  DMouse is short, sweet, and functional.
  52.  
  53.     - Does not use a CLI, can be placed in workbench startup sequence.
  54.  
  55. INSTALLATION:
  56.  
  57.     Place dmouse-handler in L: (or in the 'current' directory when DMOUSE
  58.     is run).
  59.  
  60. EXECUTE FROM A CLI (e.g. WORKBENCH STARTUP SCRIPT), example:
  61.  
  62.     1> DMouse -C newcli "<nil: >nil: con:320/120/320/80/Shell c:shell.exe"
  63.  
  64.     There is no need to 'RUN' DMouse.  A double set of quotes may be
  65.     required for the program to work properly with ConMan.
  66.  
  67. TO KILL:
  68.  
  69.     1> dmouse QUIT
  70.  
  71. SOURCE:
  72.  
  73.     Source is compileable under Aztec, +L (32 bit ints) and suitable
  74.     precompiled include file (remember the precompiled include file must
  75.     be precompiled with +L also)
  76.  
  77. COMMAND LINE ARGUMENTS:
  78.  
  79.     If DMouse is already running, any specified options will be
  80.     incorporated.
  81.  
  82.     quit    QUIT .. remove DMouse
  83.     -h        HELP
  84.     -a#     Set acceleration to #.    Default 3,         1 disables option
  85.     -t#     Set mouse acceleration threshhold, pixs/ev. default 0.
  86.     -s#     Set screen timeout to # (secs), Default 300, 0 disables option
  87.     -m#     Set mouse timeout to # (secs), Defalut 5,    0 disabled option
  88.     -c#     Set # of clicks required to bring window to frlont (def 1)
  89.     -L0     Disable LMB Window To Front and LMB/RMB Window To Back
  90.     -A0     Disable Auto-Activate when mouse moved over a window
  91.     -Rqqqq    Set Qualfier (HEX) with RMB for Window To Back (default is
  92.          the LMB qualifier).
  93.     -Kcccc    Set Keycode (HEX)   for command key (default 0045)
  94.     -Qqqqq    Set Qualifier (HEX) for command key (default 8040)
  95.             (For keycode and qualfier, must specify 4 hex digits)
  96.     -C CMD    Set Command to run.  Default is NEWCLI.  Remaining arguments
  97.         on command line is the command.
  98.  
  99.  
  100.